home *** CD-ROM | disk | FTP | other *** search
/ MacHack 2000 / MacHack 2000.toast / pc / The Hacks / Softshoe / Lisa's Mac Parts / Windows / WindowDefaults.cp < prev    next >
Text File  |  2000-06-23  |  512b  |  32 lines

  1. // WindowDefaults.cp
  2.  
  3. #ifndef WindowDefaults_h
  4. #include "WindowDefaults.h"
  5. #endif
  6. #ifndef GraphicsDeviceObject_h
  7. #include "GraphicsDeviceObject.h"
  8. #endif
  9. #ifndef Str_h
  10. #include "Str.h"
  11. #endif
  12.  
  13. GDHandle WindowDefaults::DefaultScreen() const
  14.   {
  15.     return GraphicsDeviceObject::Main();
  16.   }
  17.  
  18. void WindowDefaults::GetDefaultName( String255& name ) const
  19.   {
  20.     name.SetLength( 0 );
  21.   }
  22.  
  23. uint32 WindowDefaults::DefaultIndex() const
  24.   {
  25.     return 1;
  26.   }
  27.  
  28. bool WindowDefaults::DefaultVisibility() const
  29.   {
  30.     return true;
  31.   }
  32.